package repository
Type Members
- class NewsRepository extends SessionRepository[SearchResult, Article]
A repository class for storing and retrieving news search results.
A repository class for storing and retrieving news search results.
- Annotations
- @Singleton()
- class NewsSourcesRepository extends SessionRepository[SourcesResult, Source]
A repository class for storing and retrieving news sources results.
A repository class for storing and retrieving news sources results.
- Annotations
- @Singleton()
- abstract class SessionRepository[T, U] extends AnyRef
An abstract repository for storing entities in a session-based cache.
An abstract repository for storing entities in a session-based cache. The cache is implemented as an evicting queue, which ensures that only a limited number of entities are stored per session.